Chapter 5 - Basic HTML and the World Wide Web

Document tags

The <HTML>...</HTML> tag surrounds your entire HTML document.
The <HEAD>...</HEAD> tag surrounds any information about your HTML document.
The <BODY>...</BODY> tag surrounds the physical contents of your Web page.

Heading tags

<H1>...</H1> displays text using heading style 1.

<H2>...</H2> displays text using heading style 2.

<H3>...</H3> displays text using heading style 3.

<H4>...</H4> displays text using heading style 4.

<H2>...</H5> displays text using heading style 5.
<H6>...</H6> displays text using heading style 6.

Paragraph Formatting tags

The <BR>
tag moves any text following it to a new line.